home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / texts / hsc.lha / hsc / example / source_hsc / Makefile < prev    next >
Makefile  |  1996-05-15  |  704b  |  39 lines

  1. ##
  2. ## makefile for hsc example project
  3. ##
  4.  
  5. #
  6. # NOTE: this makefile is prepared for use under AmigaOS (default) and
  7. #    Unix. To enable the Unix-version, enable the second 
  8. #    definition of the symbol "hsc" and "dest".
  9. #
  10.  
  11. #
  12. # command used to envoke hsc
  13. #
  14. hsc    = //hsc
  15. #hsc    = ../../hsc
  16.  
  17. #
  18. # project destination dir
  19. #
  20. dest    = /object_html/
  21. #dest    = ../object_html/
  22.  
  23. #
  24. # options for hsc
  25. #
  26. opts   = TO $(dest) STATUS=line|verbose
  27.  
  28. all : $(dest)stupid.html $(dest)hugo/hugo.html $(dest)main.html 
  29.  
  30. $(dest)main.html : main.hsc macro.hsc
  31.     $(hsc) main.hsc $(opts)
  32.  
  33. $(dest)stupid.html : stupid.hsc macro.hsc
  34.     $(hsc) stupid.hsc $(opts)
  35.  
  36. $(dest)hugo/hugo.html : hugo/hugo.hsc macro.hsc
  37.     $(hsc) hugo/hugo.hsc $(opts)
  38.  
  39. # EOF